/*
.search{
    flex: 1;
    height: 46px;
    border: 1px solid #ccc;
    !* margin: 10px 20px; *!
    border-radius: 5px;
}
*/

.user{
    align-items: center;
    width: 45px;
    line-height: 45px;
    height: 45px;
    font-size: 16px;
    text-align: center;
    color: #2eaae0;
}



.movie_list
{
    margin: 10px 0px;
    background-color: #fff;
    padding: 10px 6px 0;
    margin-top: .5em;
    overflow: hidden;
}
.meta{
    display: flex;
    margin: 3px 6px;
}

.meta h2{
    flex: 1;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    font-weight: bold;
}
.meta a{
    flex: 1;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    color: #000000;
    line-height: 1.5rem;
}


.movie_item_line
{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}


.movie_item{
    flex: 1;
    padding: 8px 3px;
    width: calc((100% - 10px) / 3);
    min-width: calc((100% - 10px) / 3);
    max-width: calc((100% - 10px) / 3);
    /* &:nth-child(3n) {
      margin-right: 0;
    } */
}

.item_img img{
    width: 100%;
}

.movie_item .item_title{
    color: #4e5052;
    text-align: center;
    line-height: 1rem;
    font-size: 0.8rem;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow:ellipsis;
}

.movie_item .item_title a{
    color: #000;
}